/* Estilos para a seção principal */
#section-menu-oencontro {
    position: static;
}

/* Div principal */
.div-section-menu-oencontro {
    width: 100%;
    height: 1310px;
    background-color: #5F9C86;
    align-items: center;
    text-align: center;
    padding-top: 50px;
    /* ADICIONADO: Move tudo para baixo sem perder a cor */
}

.div-section-menu-oencontro-inicio {
    width: 90%;
    height: 1230px;
    background-color: #FDD58B;
    padding-top: 20px;
    margin-left: 48px;
    align-items: center;
    text-align: center;
}

.text-section-menu-oencontro-titulo {
    font-weight: bold;
    padding-top: 50px;
    padding-bottom: 8px;
    color: #000000;
    font-size: 46px;
    line-height: normal;
    text-align: center;
    text-transform: uppercase;
}

.text-section-menu-oencontro-subtitulo {
    font-size: 16px;
    color: #000000;
    text-align: left;
    line-height: 1.4;
    padding-top: 7px;
    padding-bottom: 20px;
    margin-left: 260px;
}

.text-section-menu-oencontro-subtitulo b {
    font-size: 16px;
    font-weight: bold;
}

.text-section-menu-oencontro-video-legenda {
    font-size: 10px;
    color: #000000;
    text-align: left;
    line-height: 1.4;
    margin-left: 215px;
}


/*---------------------------------------------------------------------------------------SLIDERS*/

/*---------------------------------------------------------------------------_/
/* Container do slider */
.slider-section-menu-natrilhasonora {
    position: relative;
    width: 72%;
    margin: auto;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
}

/* Imagens do slider */
.slider-img {

    display: block;
    width: 100%;
    height: 260%;
    object-fit:cover;
    object-position: center;
    background-position: center;
    object-position: 50% 50%; /* even if we dont declare this the image will still be centered */
    max-width: 100%; /* Garante que a imagem não ultrapasse o container */
    max-height: 120%; /* Mantém a imagem dentro dos limites do container */
}

/* Configuração básica dos slides */
.slide {
    display: none;  /*Oculta todos os slides inicialmente */
    position: relative;
    min-width: 100%;
}

.slide.active {
    display: block; /* Apenas o slide ativo aparece */
}

/* Botões de navegação */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color:transparent;
    color: rgba(235, 234, 234, 0.63);
    border: none;
    padding: 20px 25px;/* Aumenta o tamanho do botão */
    cursor: pointer;
    border-radius: 50%;
    font-size: 65px; /* Aumenta o tamanho da seta */
}

.prev { left: 10px; }
.next { right: 10px; }

/* Efeito hover nos botões */
.prev:hover, .next:hover {
    background-color: transparent;
    color: rgb(255, 255, 255);
}

/* Efeito de transição dos slides */
.fade {
    animation: fadeEffect 1s;
}

@keyframes fadeEffect {
    from {opacity: 0.4;}
    to {opacity: 1;}
}

/* Legenda que aparece ao passar o mouse */
.legenda-slider {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 98%;
    background:rgba(255, 255, 255, 0.623);
    color: black;
    text-align: left;
    padding: 10px 60px 10px 90px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    font-weight:400;
    font-size: 14px;
}

.legenda-dalegenda{
    font-size: 12px;
}

.legenda-dalegenda i{
    font-size: 9px;
    font-style: italic;
}

.legenda-dalegenda-numero{
    font-size: 12px;
    text-align: right;
    margin-right: 25px;
}

.slide:hover .legenda-slider {
    opacity: 1; /* Mostra a legenda ao passar o mouse */
}

/*------------------------*/

.text-section-menu-opredadorjasabe{
    color: #953164;
    font-weight: 700;
    font-size: 17px;
    text-align: left;
    line-height: 1.5;
    padding-top: 77px;
    margin-left: 220px;
}

.text-section-menu-opredadorjasabe i{
    font-style: italic;
    font-size: 17px;
}

.text-section-menu-opredadorjasabe a {
    font-size: 17px;
    color: inherit;
}

.text-section-menu-opredadorjasabe a:hover{
    color: #5F9C86;
}